home *** CD-ROM | disk | FTP | other *** search
- /*
- * Mach Operating System
- * Copyright (c) 1989 Carnegie-Mellon University
- * Copyright (c) 1988 Carnegie-Mellon University
- * All rights reserved. The CMU software License Agreement specifies
- * the terms and conditions for use and redistribution.
- */
- /*
- * HISTORY
- * 09-23-91 mike Created from Mach version
- *
- */
- /*
- * File: architecture/nrw/macro_help.h
- *
- * Provide help in making lint-free macro routines
- *
- */
-
- #ifndef _NRW_MACRO_HELP_H_
- #define _NRW_MACRO_HELP_H_
-
- #ifndef MACRO_BEGIN
- # define MACRO_BEGIN do {
- #endif MACRO_BEGIN
-
- #ifndef MACRO_END
- # define MACRO_END } while (0)
- #endif MACRO_END
-
- #ifndef MACRO_RETURN
- # define MACRO_RETURN if (1) return
- #endif MACRO_RETURN
-
- #endif _NRW_MACRO_HELP_H_
-
-